home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 26.zip / BS1 part 26 / Powervisor v1.10b disk1.adf / s / pv / ShowAscii.pv < prev   
Text File  |  1991-09-15  |  168b  |  15 lines

  1. /* */
  2. options results
  3.  
  4. 'alloc' n 4
  5. mem=result
  6. do i=0 to 255
  7.     if i=10 then a=0
  8.     else a=i
  9.  
  10.     'assign *'||mem||'.b='||a
  11.     'print \('||mem||',%s)'
  12. end
  13. 'print \0a'
  14. 'free' mem
  15.